Don't print "Today at" in front of the time for today's date. It's
authorWilliam Rikard Lachance <wlach@src.gnome.org>
Thu, 6 Mar 2008 19:43:22 +0000 (19:43 +0000)
committerWilliam Rikard Lachance <wlach@src.gnome.org>
Thu, 6 Mar 2008 19:43:22 +0000 (19:43 +0000)
redudant. (see bug #410517).

svn path=/trunk/; revision=19723

ChangeLog
gtk/gtkfilechooserdefault.c

index 52e193a768c2d31e715eca1d9173d6dcbe8ff705..cb47aa1274ba649e66e68a977abf4d253bfeba3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-06  William Lachance <wrlach@gmail.com>
+
+       * gtk/gtkfilechooserdefault.c: Don't print "Today at" in front of
+       the time for today's date. It's redudant. (see bug #410517).
+
 2008-03-06  Xan Lopez  <xan@gnome.org>
 
        * gtk/gtkfixed.c: fix typo in documentation.
index a2a75f732ef5bff98bbfb604fbaa411f3b617732..713140c9cf9f7fcdf78822e6da6e6973e888dc11 100644 (file)
@@ -11087,7 +11087,7 @@ list_mtime_data_func (GtkTreeViewColumn *tree_column,
 
       /* Translators: %H means "hours" and %M means "minutes" */
       if (days_diff == 0)
-        format = _("Today at %H:%M");
+        format = "%H:%M";
       else if (days_diff == 1)
        format = _("Yesterday at %H:%M");
       else